From: José Aliste Date: Thu, 16 Jun 2011 18:32:13 +0000 (-0400) Subject: info_bar: call style_updated at the end of info_bar_init X-Git-Tag: archive/raspbian/3.24.39-1+rpi1~1^2~65^2~39^2~21006 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=1da07caaeddbbfaeed708feda6ea97669b200995;p=gtk%2B3.0.git info_bar: call style_updated at the end of info_bar_init This fix a render bug where the infobar would not add borders arount its content. Fix proposed by Benjamin Otte. --- diff --git a/gtk/gtkinfobar.c b/gtk/gtkinfobar.c index 64f3e940f2..70ed73436a 100644 --- a/gtk/gtkinfobar.c +++ b/gtk/gtkinfobar.c @@ -541,6 +541,7 @@ gtk_info_bar_init (GtkInfoBar *info_bar) info_bar->priv->action_area = action_area; gtk_widget_pop_composite_child (); + gtk_info_bar_style_updated (info_bar); } static GtkBuildableIface *parent_buildable_iface;